Boost (C++ libraries)

Boost C++ Libraries

Boost logo
Stable release 1.48.0 / November 15, 2011; 2 months ago (2011-11-15)
Type Libraries
License Boost Software License
Website www.boost.org

Boost is a set of free software libraries that extend the functionality of C++.

Contents

Overview

Most of the Boost libraries are licensed under the Boost Software License, designed to allow Boost to be used with both free and proprietary software projects. Many of Boost's founders are on the C++ standards committee and several Boost libraries have been accepted for incorporation into both the Technical Report 1 and C++11.[1]

The libraries are aimed at a wide range of C++ users and application domains. They range from general-purpose libraries like the smart pointer library, to operating system abstractions like Boost FileSystem, to libraries primarily aimed at other library developers and advanced C++ users, like the template metaprogramming (MPL) and domain-specific language (DSL) creation (Proto).

In order to ensure efficiency and flexibility, Boost makes extensive use of templates. Boost has been a source of extensive work and research into generic programming and metaprogramming in C++.

The current Boost release contains over 80 individual libraries, including libraries for linear algebra, pseudorandom number generation, multithreading, image processing, regular expressions, unit testing, and many others. Most Boost libraries are header based, consisting of inline functions and templates, and as such do not need to be built in advance of their use.

Some Boost libraries coexist as independent libraries.[2][3]

Associated people

Original founders of Boost still active in the community include Beman Dawes and David Abrahams. Author of several books on C++, Nicolai Josuttis contributed the Boost array library in 2001. Around 3,000 people are subscribed to Boost mail list and dozens of them are very active as of 2011.

See also

References

  1. ^ Library Technical Report
  2. ^ Asio web site
  3. ^ Spirit web-site

Further reading

External links